home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / netz / amislate / examplerexx / remote.rexx < prev    next >
OS/2 REXX Batch file  |  1995-08-05  |  378b  |  12 lines

  1. /* A program demonstrating how to use RemoteEasyRequest to ask a 
  2.    question of the Remote AmiSlate user. */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. RemoteEasyRequest '"'||"Remote Request"||'"' '"'||"Please Pick a number"||'"' '1|2|3|4|5|0'
  9. waitevent stem l.  message
  10. EasyRequest Answer '"'||"The remote user picked: "|| l.message||'"' Okay
  11.  
  12.